home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
InstallerNG
/
developer
/
gui
/
example
/
igui_SetHelp.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
905b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* set the help text to the help window.
*
* IN: application - pointer to the private application structure
* helptext - the help text :=)
*
* OUT: -
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_SetHelp(register __a0 APTR application, register __a1 char *helptext)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
set(((struct Application *) application)->app_HelpText, MUIA_Floattext_Text, helptext);
}